home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 40
/
Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso
/
Aminet
/
text
/
dtp
/
GS510-data.lha
/
Ghostscript
/
5.10
/
data
/
decrypt.ps
< prev
next >
Wrap
Text File
|
1994-07-28
|
295b
|
14 lines
% Decrypt an eexec-encoded file.
(t.in) (r) file /in exch def
(t.out) (w) file /out exch def
256 string /buf exch def
55665 % eexec encryption seed
{ in buf readhexstring /more exch def
dup .type1decrypt out exch writestring
more not { exit } if
} loop
in closefile
out closefile
quit